home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7026.txt < prev    next >
Text File  |  1994-10-06  |  859b  |  33 lines

  1. Returns TRUE if the COMMAND key was pressed
  2.  
  3. Command : BOOLEAN;
  4.  
  5. Returns TRUE if the SHIFT key was pressed
  6.  
  7. Shift : BOOLEAN;
  8.  
  9. Returns TRUE if the CAPS LOCK key was pressed
  10.  
  11. CapsLock : BOOLEAN;
  12.  
  13. Returns TRUE if the OPTION key was pressed
  14.  
  15. Option : BOOLEAN;
  16.  
  17. Returns the X,Y coordinates of the mouse without clicking the mouse
  18.  
  19. GetMouse(VAR X,Y : REAL);
  20.  
  21. Returns True if a non-modifier key has been pressed and also returns the AsciiCode of the key that was pressed, otherwise FALSE is returned
  22.  
  23. AutoKey(VAR AsciiCode : INTEGER) : BOOLEAN;
  24.  
  25. Returns True if a non-modifier key has been pressed and also returns the AsciiCode of the key that was pressed, otherwise FALSE is returned
  26.  
  27. KeyDown(VAR AsciiCode : INTEGER) : BOOLEAN;
  28.  
  29. Returns True if mouse is clicked and also returns the X,Y location, otherwise it returns FALSE
  30.  
  31. MouseDown(VAR X,Y : REAL) : BOOLEAN;
  32.  
  33.